iT邦幫忙

2023 iThome 鐵人賽

DAY 8
0
自我挑戰組

基礎前端+後端網站分享之留言板製作系列 第 8

第八天--介紹Bootstrap和如何使用

  • 分享至 

  • xImage
  •  

今天介紹Bootstrap和如何使用。

官網說這是世界上最受歡迎的框架。
讓人專注在撰寫html,提供RWD 響應式,就是讓網頁兼容各種設備的畫面,也能讓不會JavaScript的人用,就是複製貼上,就有現成的畫面,很懶人又適合新手(用過都說讚X)。

官網有六角學院翻譯,官網原文是英文。

至於如何用,進到官網,複製官網的這兩條。
如果只是用bootstrap的Css or JS,這樣就很足夠。
https://ithelp.ithome.com.tw/upload/images/20230917/20158466VFFKb51GfG.png

放到html檔的這裡。

example.html程式碼

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0/dist/css/bootstrap.min.css" rel="stylesheet"
        integrity="sha384-wEmeIV1mKuiNpC+IOBjI7aAzPcEZeedi5yW5f2yOq55WWLwNGmvvx4Um1vskeMj0" crossorigin="anonymous">
    <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0/dist/js/bootstrap.bundle.min.js"
        integrity="sha384-p34f1UUtsS3wqzfto5wAAmdvj+osOnFyQFpp4Ua3gs/ZVWx6oOypYoCJhGGScy+8"
        crossorigin="anonymous"></script>
    <title>bootstrap範例</title>
</head>

<body>

    <div class="mb-3">
        <label for="exampleFormControlInput1" class="form-label">Email address</label>
        <input type="email" class="form-control" id="exampleFormControlInput1" placeholder="name@example.com">
    </div>
    <div class="mb-3">
        <label for="exampleFormControlTextarea1" class="form-label">Example textarea</label>
        <textarea class="form-control" id="exampleFormControlTextarea1" rows="3"></textarea>
    </div>
    
</body>

</html>

程式碼這裡我找表單控制(Form controls),點COPY,準備貼上!

引用:https://bootstrap5.hexschool.com/docs/5.1/forms/form-control/

https://ithelp.ithome.com.tw/upload/images/20230917/20158466VOAkujE3PU.png

就成功了,非常簡單。

明天介紹Bootstrap通用類別介紹,上面程式寫的mb-3就是明天會介紹到。


上一篇
第七天--css排版
下一篇
第九天--Bootstrap通用類別
系列文
基礎前端+後端網站分享之留言板製作30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言